home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / axis2400_webcams.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  83 lines

  1. #
  2. # Written by Renaud Deraison
  3. #
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7. # Ref:
  8. # From: Martin Eiszner <martin@websec.org>
  9. # To: bugtraq@securityfocus.com
  10. # Subject: axis2400 webcams
  11. # Message-Id: <20030228104612.7f035235.martin@websec.org>
  12. #
  13. #
  14. # Thanks to Martin for having sent me a sample output of /support/messages :
  15. #
  16. # Jan 20 15:19:04 AxisProduct camd[22]: CGI syntax error 13163 str=HTTP/1.0 400
  17.  
  18.  
  19.  
  20. if(description)
  21. {
  22.  script_id(11298);
  23.  script_bugtraq_id(6980, 6987);
  24.  
  25.  
  26.  script_version ("$Revision: 1.6 $");
  27.  name["english"] = "axis2400 webcams";
  28.  script_name(english:name["english"]);
  29.  
  30.  desc["english"] = "
  31. The remote Axis product is vulnerable to several
  32. flaws, including :
  33.  - Information disclosure (an attacker may view the remote
  34.    /var/log/messages file)
  35.  - Overwriting of system files
  36.  - Arbitrary file creation
  37.  
  38. An attacker may use these flaws to prevent this product from 
  39. working properly or to gather information to make a better
  40. attack against the rest of your network.
  41.  
  42. Solution : Contact your vendor for a patch
  43. Risk factor : High";
  44.  
  45.  script_description(english:desc["english"]);
  46.  
  47.  summary["english"] = "reads the remote /var/log/messages";
  48.  script_summary(english:summary["english"]);
  49.  
  50.  script_category(ACT_GATHER_INFO);
  51.  
  52.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  53.  family["english"] = "CGI abuses";
  54.  script_family(english:family["english"]);
  55.  
  56.  script_dependencie("find_service.nes");
  57.  script_require_ports("Services/www", 80);
  58.  exit(0);
  59. }
  60.  
  61. #
  62. # The script code starts here
  63. #
  64.  
  65. include("http_func.inc");
  66. include("http_keepalive.inc");
  67.  
  68.  
  69. port = get_http_port(default:80);
  70.  
  71.  
  72. if(!get_port_state(port))exit(0);
  73.  
  74.  
  75. req = http_get(item:"/support/messages", port:port);
  76. res = http_keepalive_send_recv(port:port, data:req);
  77. if( res == NULL ) exit(0);
  78.  
  79.  
  80. if(egrep(pattern:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) [0-9]*.*AxisProduct .*", string:res))
  81.     security_hole(port);
  82.